* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #D5D5D5!important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, gray, white); /* Ä°ki renkli geÃ§iÅŸ */
    z-index: 1000;
  
}

.navbar a {
    color:darkgray!important;
    font-size: 1.2rem;
    padding: 10px;
    text-decoration: none;
}

.navbar a:hover {
    color: #ffffff;
   
    transition: background-color 0.3s ease;
	background-color: transparent !important; /* Arkaplan rengini kaldir */
}

.navbar-toggler {
    border-color: gray!important;
}

.navbar-toggler-icon {
    background-color: gray!important;
}

.container {
    max-width: 1200px; /* MasaÃ¼stÃ¼nde geniÅŸliÄŸi sÄ±nÄ±rlÄ±yoruz */
    margin: 0 auto;
}
@media only screen and (max-width:760px){
	
	.navbar{
		background: linear-gradient(to right, gray, white); 
		position: fixed;
		top: 0; left: 0; width: 100%;
	    
	}
}

.navbar-brand{
	font-weight: 600;
	
}
.navbar li{
	margin-left: 10px;
}

.navbar li a img{
	opacity: 0.6;
	border-radius: 50%;
}

.navbar li a{
	font-size: 15px;
	color:black!important;
	font-weight: 400;
	letter-spacing: 1px;
	transition: 0.2s;
}
.navbar .navbar-nav .active>a,
.navbar .navbar-nav a:hover{
	color: white!important;
}

.navbar a img {
	border-radius: 50%;
	opacity: 0.6;
}

.navbar nav a span{
	color: darkgray!important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-right: auto; /* SaÄŸa yaslanmasÄ±nÄ± saÄŸlÄ±yoruz */
}

@media only screen and (max-width:768px){
	.bolum1{
		height: 850px;
	}
	h2{
		margin-top: 35px;
	}
	
}
.language-buttons {
      position: fixed;
      top: 20px;
      right: 20px;
	
    }
    /* Dil seÃ§imi dÃ¼ÄŸmelerinin boyutunu kÃ¼Ã§Ã¼lt */
    .language-buttons .btn {
      font-size: 12px;
      padding: 5px 10px;
		color: white!important;
    }
    /* Dil seÃ§imi dÃ¼ÄŸmelerindeki resimlerin boyutunu ayarla */
    .language-buttons img {
      width: 40px;
      height: 40px;
    }
@media (max-width: 768px) {
  .language-buttons {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px; /* Ä°stenilen bir boÅŸluk deÄŸeri verebilirsiniz */
  }
	}
.navbar .navbar-nav .language-buttons .btn  img:hover{
	transform: scale(1.4);
	background: rgba(80,80,80,0.3);
	border-radius: 35px;
	z-index: 2;
	transition: 0.9s;
	cursor: pointer;
}
footer {
    background:#D8D8D8!important;
    color: white;
    padding: 20px 0;
}

.footer-logo img {
    width: 150px;
}

.sosyalmedya {
    display: flex;
    gap: 15px;
}

.sosyalmedya li {
    list-style: none;
}

.sosyalmedya a {
    color: white;
    font-size: 24px;
    transition: 0.3s;
}

.sosyalmedya a:hover {
    color: #ff6600;
}

.footer-links li {
    margin: 5px 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.product-collection {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.product-item {
    background-color: #D5D5D5;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: calc(25% - 20px); /* 4 Ürün yan yana */
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	 transition: transform 0.3s ease;
}
.product-item:hover{
	 transform: translateY(-5px);
}
.product-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product-item h2 {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px;
}

.product-item .price {
    font-size: 16px;
    color:#454545;
    margin: 0 0 15px;
}

.product-item button {
    background-color: #777777;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.product-item button:hover {
    background-color: #A5A5A5;
}
.cart-button {
    display: inline-block;
    background-color: #777777;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 16px;
    text-align: center;
}

.cart-button:hover {
    background-color: #A5A5A5;
	color: white;
}

/* RESPONSIVE TASARIM */
@media screen and (max-width: 1024px) {
    .product-item {
        width: calc(33.33% - 20px); /* Tabletler için 3 ürün */
    }
}

@media screen and (max-width: 768px) {
    .product-item {
        width: calc(50% - 20px); /* Mobil için 2 ürün */
    }
}

@media screen and (max-width: 480px) {
    .product-item {
        width: 100%; /* Küçük ekranlarda 1 ürün */
    }
}
